home *** CD-ROM | disk | FTP | other *** search
/ Imagine the Universe (9th Edition) / Imagine the Universe 9 - Disc 1.iso / pc / imagine / docs / features / news / popup.js < prev    next >
Text File  |  2004-03-01  |  203b  |  10 lines

  1. <!--
  2.  
  3. function popupWindow(win,h,w) {
  4.     var options = 'height=' + h + ',width=' + w + ',resizable,scrollbars';
  5.  
  6.     var newWindow = window.open(win,'newWindow',options)
  7.     newWindow.focus();
  8. }
  9. // -->
  10.